gdk: Fix GDK_ALL_EVENTS_MASK
authorBenjamin Otte <otte@redhat.com>
Mon, 13 Nov 2017 16:06:34 +0000 (17:06 +0100)
committerBenjamin Otte <otte@redhat.com>
Mon, 13 Nov 2017 22:41:37 +0000 (23:41 +0100)
This mask was forgotten to update when the last 2 event masks were
added, probably because it looks like it's already maxed.

gdk/gdktypes.h

index 88346fc5450f51a925392e65555620227a9a0f22..ad6248dd093f511a267fe836ab86ed298bd01c92 100644 (file)
@@ -441,7 +441,7 @@ typedef enum
   GDK_SMOOTH_SCROLL_MASK        = 1 << 23,
   GDK_TOUCHPAD_GESTURE_MASK     = 1 << 24,
   GDK_TABLET_PAD_MASK           = 1 << 25,
-  GDK_ALL_EVENTS_MASK           = 0xFFFFFE
+  GDK_ALL_EVENTS_MASK           = 0x3FFFFFE
 } GdkEventMask;
 
 /**